3.2.64 \(\int \frac {1}{x^2 (a+b x)} \, dx\) [164]

Optimal. Leaf size=28 \[ -\frac {1}{a x}-\frac {b \log (x)}{a^2}+\frac {b \log (a+b x)}{a^2} \]

[Out]

-1/a/x-b*ln(x)/a^2+b*ln(b*x+a)/a^2

________________________________________________________________________________________

Rubi [A]
time = 0.01, antiderivative size = 28, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 1, integrand size = 11, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.091, Rules used = {46} \begin {gather*} -\frac {b \log (x)}{a^2}+\frac {b \log (a+b x)}{a^2}-\frac {1}{a x} \end {gather*}

Antiderivative was successfully verified.

[In]

Int[1/(x^2*(a + b*x)),x]

[Out]

-(1/(a*x)) - (b*Log[x])/a^2 + (b*Log[a + b*x])/a^2

Rule 46

Int[((a_) + (b_.)*(x_))^(m_)*((c_.) + (d_.)*(x_))^(n_.), x_Symbol] :> Int[ExpandIntegrand[(a + b*x)^m*(c + d*x
)^n, x], x] /; FreeQ[{a, b, c, d}, x] && NeQ[b*c - a*d, 0] && ILtQ[m, 0] && IntegerQ[n] &&  !(IGtQ[n, 0] && Lt
Q[m + n + 2, 0])

Rubi steps

\begin {align*} \int \frac {1}{x^2 (a+b x)} \, dx &=\int \left (\frac {1}{a x^2}-\frac {b}{a^2 x}+\frac {b^2}{a^2 (a+b x)}\right ) \, dx\\ &=-\frac {1}{a x}-\frac {b \log (x)}{a^2}+\frac {b \log (a+b x)}{a^2}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]
time = 0.00, size = 28, normalized size = 1.00 \begin {gather*} -\frac {1}{a x}-\frac {b \log (x)}{a^2}+\frac {b \log (a+b x)}{a^2} \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[1/(x^2*(a + b*x)),x]

[Out]

-(1/(a*x)) - (b*Log[x])/a^2 + (b*Log[a + b*x])/a^2

________________________________________________________________________________________

Maple [A]
time = 0.08, size = 29, normalized size = 1.04

method result size
default \(-\frac {1}{a x}-\frac {b \ln \left (x \right )}{a^{2}}+\frac {b \ln \left (b x +a \right )}{a^{2}}\) \(29\)
norman \(-\frac {1}{a x}-\frac {b \ln \left (x \right )}{a^{2}}+\frac {b \ln \left (b x +a \right )}{a^{2}}\) \(29\)
risch \(-\frac {1}{a x}+\frac {b \ln \left (-b x -a \right )}{a^{2}}-\frac {b \ln \left (x \right )}{a^{2}}\) \(32\)

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/x^2/(b*x+a),x,method=_RETURNVERBOSE)

[Out]

-1/a/x-b*ln(x)/a^2+b*ln(b*x+a)/a^2

________________________________________________________________________________________

Maxima [A]
time = 0.28, size = 28, normalized size = 1.00 \begin {gather*} \frac {b \log \left (b x + a\right )}{a^{2}} - \frac {b \log \left (x\right )}{a^{2}} - \frac {1}{a x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/x^2/(b*x+a),x, algorithm="maxima")

[Out]

b*log(b*x + a)/a^2 - b*log(x)/a^2 - 1/(a*x)

________________________________________________________________________________________

Fricas [A]
time = 0.97, size = 26, normalized size = 0.93 \begin {gather*} \frac {b x \log \left (b x + a\right ) - b x \log \left (x\right ) - a}{a^{2} x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/x^2/(b*x+a),x, algorithm="fricas")

[Out]

(b*x*log(b*x + a) - b*x*log(x) - a)/(a^2*x)

________________________________________________________________________________________

Sympy [A]
time = 0.06, size = 19, normalized size = 0.68 \begin {gather*} - \frac {1}{a x} + \frac {b \left (- \log {\left (x \right )} + \log {\left (\frac {a}{b} + x \right )}\right )}{a^{2}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/x**2/(b*x+a),x)

[Out]

-1/(a*x) + b*(-log(x) + log(a/b + x))/a**2

________________________________________________________________________________________

Giac [A]
time = 1.44, size = 30, normalized size = 1.07 \begin {gather*} \frac {b \log \left ({\left | b x + a \right |}\right )}{a^{2}} - \frac {b \log \left ({\left | x \right |}\right )}{a^{2}} - \frac {1}{a x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/x^2/(b*x+a),x, algorithm="giac")

[Out]

b*log(abs(b*x + a))/a^2 - b*log(abs(x))/a^2 - 1/(a*x)

________________________________________________________________________________________

Mupad [B]
time = 0.05, size = 25, normalized size = 0.89 \begin {gather*} \frac {2\,b\,\mathrm {atanh}\left (\frac {2\,b\,x}{a}+1\right )}{a^2}-\frac {1}{a\,x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/(x^2*(a + b*x)),x)

[Out]

(2*b*atanh((2*b*x)/a + 1))/a^2 - 1/(a*x)

________________________________________________________________________________________